home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / jw61f.zip / RUNPC386.DOC < prev    next >
Text File  |  1992-10-25  |  5KB  |  153 lines

  1. J for the PC386
  2.  
  3.  
  4. Copyright (c) 1990-1992, Iverson Software Inc.
  5. All Rights Reserved.
  6.  
  7. J is a licensed product of Iverson Software Inc. (ISI).  Permission to
  8. copy this software without fee is granted provided (0) the copies are
  9. not made or distributed for direct commercial advantage, (1) this
  10. copyright notice is included, and (2) notice is given that copying is
  11. by permission of ISI.  To copy otherwise requires the specific written
  12. permission of ISI.
  13.  
  14. The software is distributed on an "as is" basis.  ISI disclaims all
  15. warranties, expressed or implied, including but not limited to implied
  16. warranties of merchantability and fitness for a particular purpose.
  17.  
  18. Registered users receive a printed manual and notice of new releases.
  19. To order or register your copy, send $24 (plus $10 for shipping and
  20. handling) to:
  21.  
  22. Iverson Software Inc.
  23. 33 Major Street
  24. Toronto, Ontario, Canada  M5S 2K9
  25.  
  26. Phone (416) 925 6096
  27. FAX   (416) 488 7559
  28. ________________________________________
  29.  
  30.  
  31. Distribution Files
  32.  
  33. bigprtsc.com    DOS print utility
  34. cpyright.doc    Copyright notice
  35. dos4gw.doc      Documentation for dos4gw.exe
  36. dos4gw.exe      DOS extender
  37. isiinfo.doc     About Iverson Software Inc.
  38. j.bat           For starting J under DOS
  39. j.hlp           DOS help file
  40. j387.le         Needed by j.bat; 80387 fl. pt.
  41. jemu.le         Needed by j.bat; emulated fl. pt.
  42. jserv387.exe    Needed by jwin.exe; 80387 fl. pt.
  43. jservemu.exe    Needed by jwin.exe; emulated fl. pt.
  44. jwin.exe        For starting J under Windows
  45. jwin.hlp        Windows help file
  46. rminfo.exe      Real/protected mode configuration
  47. runpc386.doc    This note
  48. status.doc      Implementation status
  49. wp\             Window Program examples
  50. xenos.doc       Documentation for !:
  51.  
  52.  
  53. Installation
  54.  
  55. Copy the diskette contents onto your hard disk:
  56.  
  57. c:                      Change to hard disk drive c
  58. xcopy a:*.* j\ /s       Copy from diskette drive a to directory j
  59.  
  60. Then execute
  61.  
  62. cd \j                   Hardware floating point
  63. copy j387.le j.le
  64. copy jserv387.exe jserv.exe
  65.       or
  66. cd \j                   Emulated floating point
  67. copy jemu.le j.le
  68. copy jservemu.exe jserv.exe
  69.  
  70. depending on whether your machine supports the floating point
  71. instruction set (80387 processor or 80486 CPU).  Your PC may
  72. use different letters for the diskette drive and the hard disk drive.
  73. Substitute for a: and c: as appropriate.
  74.  
  75.  
  76. DOS Start-Up
  77.  
  78. Type cd c:\j to change to the j directory, then type j to start J.
  79. In the J session, press F1 for help.  Enter Control-D to terminate
  80. the session.
  81.  
  82.  
  83. Windows Installation and Start-Up
  84.  
  85. Add J to the Program Manager:
  86.  
  87. . click a Program Manager group window
  88. . select File from the menu, then select New
  89. . select Program Item in the dialog box and click OK
  90. . type J under Description
  91. . type c:\j\jwin.exe under Command Line
  92. . type c:\j under Directory
  93. . click OK
  94.  
  95. Start J by double clicking the J icon.
  96.  
  97. The J window is resizable and scrollable.  It is divided into
  98. input and output areas containing separate logs.  Press tab to
  99. switch between these areas, and the arrow keys to scroll the logs.
  100. Press F1 for help.  Enter Control-D to terminate the session.
  101. The phrase 11!:0 'pc abc; pshow;' creates a window through the
  102. Window Driver interface.  The facility is documented in the
  103. online help.
  104.  
  105.  
  106. DOS4GW DOS Extender
  107.  
  108. J runs in 32 bit protected mode under DOS4GW.  DOS4GW is the version
  109. of Rational Systems, Inc. DOS4G product that is distributed with
  110. the WATCOM product WATCOM C/386.  DOS4GW is documented in dos4gw.doc.
  111. The simplified description here is adequate for most requirements.
  112.  
  113. The DOS4GW command line is the program to run and its start-up
  114. parameters.  For example,
  115.  
  116.    dos4gw jemu.le
  117.  
  118. runs the linear executable file jemu.le.
  119.  
  120. DOS4GW parameters are in environment variables dos4g, dos16m, and
  121. dos4gvm.  The DOS set command defines environment variables.  
  122. The sets can be entered at the DOS prompt, in autoexec.bat, or 
  123. in a BAT file you create for the purpose of running J.
  124.  
  125. . Reserve Extended Memory for Others
  126.  
  127. DOS4GW running directly under DOS (not under Windows) takes all 
  128. extended memory.  If programs run from J require extended memory 
  129. you must tell DOS4GW to limit itself.
  130.  
  131.    set dos16m=:2048
  132.  
  133. specifies that DOS4GW should use 2 megabytes of extended memory.
  134.  
  135. . Virtual Memory
  136.  
  137. The DOS4GW Virtual Memory Manager provides virtual memory with 
  138. a swap file.  VMM works only directly under DOS; hosts like 
  139. Windows provide their own virtual memory.  Note: Windows virtual 
  140. memory performs badly and should be avoided.
  141.  
  142. VMM can reasonably provide up to 1 megabyte additional memory.  
  143. Above that most applications bog down in disk thrashing.  A few 
  144. applications are well suited to virtual memory and run well with 
  145. a workspace much larger than allowed by real memory.
  146.  
  147. VMM parameters are documented in dos4gw.doc.
  148.  
  149.    set dos4gvm=virtualsize#2048 swapname#c:\j.swp
  150.  
  151. creates/uses c:j.swp as a swap file to provide a 2 megabyte 
  152. virtual memory space.
  153.